home *** CD-ROM | disk | FTP | other *** search
/ The Rolling Stones: Shine a Light (Press Kit) / Shine a Light (Press Kit).iso / pc / program.dxr / Internal_11_MoreImages_Behavior.ls < prev    next >
Encoding:
Text File  |  2008-03-03  |  278 b   |  20 lines

  1. on mouseWithin me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp me
  10.   sound(3).play(member("Click"))
  11.   case the frameLabel of
  12.     "Preview_1A":
  13.       go("Preview_2")
  14.     "Preview_2A":
  15.       go("Preview_3")
  16.     "Preview_3A":
  17.       go("Preview_1")
  18.   end case
  19. end
  20.